home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / PCICommonPlugin.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  74 lines

  1. /*
  2.      File:        PCICommonPlugin.idl
  3.  
  4.      Contains:    This file contains all interface related structures and prototypes common for pci expert to
  5.  
  6.      Version:    Technology:    Copland
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __PCICOMMONPLUGIN_IDL__
  19. #define __PCICOMMONPLUGIN_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __NAMEREGISTRY_IDL__
  28. #include <NameRegistry.idl>
  29. #endif
  30. #ifndef __ERRORS_IDL__
  31. #include <Errors.idl>
  32. #endif
  33. #ifndef __DRIVERFAMILYMATCHING_IDL__
  34. #include <DriverFamilyMatching.idl>
  35. #endif
  36. #ifndef __INTERRUPTS_IDL__
  37. #include <Interrupts.idl>
  38. #endif
  39.  
  40. #ifdef __SOMIDL__
  41.  
  42. #if FOR_SYSTEM8_PREEMPTIVE
  43. /* typedefs for common plugins interface*/
  44. typedef OpaquePtr DefaultEnablerFuncPtr;
  45. typedef OpaquePtr DefaultDisablerFuncPtr;
  46. typedef OpaquePtr DefaultDispatcherFuncPtr;
  47. typedef OpaquePtr InitializeFuncPtr;
  48. typedef OpaquePtr FinalizeFuncPtr;
  49. typedef SOMLargeStruct            PCIPluginHeader;            /* Derived from a struct of 20 bytes in size */
  50.  
  51. typedef OpaquePtr                PCIPluginHeaderPtr;            /* Substituted OpaquePtr for ``PCIPluginHeader*'' */
  52.  
  53. /* pci bridge descriptor definition*/
  54. typedef SOMLargeStruct            PCIBridgeDescriptor;        /* Derived from a struct of 40 bytes in size */
  55.  
  56. typedef OpaquePtr                PCIBridgeDescriptorPtr;        /* Substituted OpaquePtr for ``PCIBridgeDescriptor*'' */
  57.  
  58. /*
  59.  pci bridge variables for bridges
  60.     stolen from marconi InterruptsAssign.c written by Matt Nelson
  61. */
  62. typedef SOMLargeStruct            DefaultBridgeVariables;        /* Derived from a struct of 20 bytes in size */
  63.  
  64. typedef OpaquePtr                DefaultBridgeVariablesPtr;    /* Substituted OpaquePtr for ``DefaultBridgeVariables*'' */
  65.  
  66. /* pci header interface version definition*/
  67. /* pci error codes*/
  68. #endif
  69.  
  70. #endif /* __SOMIDL__ */
  71.  
  72. #endif /* __PCICOMMONPLUGIN_IDL__ */
  73.  
  74.